From: Jim Blandy Date: Wed, 26 May 1993 22:19:04 +0000 (+0000) Subject: * make-dist: Check for .elc files with no corresponding .el file. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95916 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9f7602fd7280438eaf9379b432ef044dd4209bf0;p=emacs.git * make-dist: Check for .elc files with no corresponding .el file. * make-dist: Check for .elc files with no corresponding .el file. --- diff --git a/make-dist b/make-dist index ac2bd91b0f1..f0c8805bc83 100755 --- a/make-dist +++ b/make-dist @@ -87,6 +87,11 @@ them, and try again." >&2 exit 1 fi +### Check for .elc files with no corresponding .el file. +ls -1 lisp/*.el | sed 's/\.el$/.elc/' > /tmp/el +ls -1 lisp/*.elc > /tmp/elc +comm -13 /tmp/el /tmp/elc + echo "Creating staging directory: \`${tempparent}'" mkdir ${tempparent} emacsname="emacs-${version}${new_extension}"